Conversation
… wants to see all the info. --@iamserda
…var-name, updated gitignore file to better reflect the name cases of files to avoid issue in different operating systems, added some make recipes, added some dependencies like ruff and pre-commit, added config file for pre-commits hooks and synced uv.lock --@iamserda
…de-agent will work on and added unit tests for various operations for the calculator app --@iamserda
…ON output formatting; add file retrieval utility and corresponding tes, updated make, added basic and proper unit testing for path to folder llm will be allowed to work on. updated readme, makefile, gitignore --@iamserda
…nfo; modify Makefile to use pytest --@iamserda
… limit; include tests for various file scenarios and add lorem.txt for testing --@iamserda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several major improvements to the project, including the addition of a calculator module with tests, a robust file information utility with tests, enhancements to the development workflow (Makefile, pre-commit, and dependencies), and improvements to documentation and environment configuration. These changes collectively improve the project's functionality, maintainability, and ease of contribution.
New Calculator Module and Tests
calculator/pkg/calculator.py, along with a command-line interface incalculator/main.pyand JSON output formatting incalculator/pkg/render.py. Comprehensive unit tests are provided incalculator/tests.py. [1] [2] [3] [4]File Information Utility and Tests
functions/get_files_info.py, with recursive traversal and error handling for invalid paths. Added corresponding unit tests infunctions/tests.pyand a standalone test script intest_get_files_info.py. [1] [2] [3]Development Workflow Enhancements
Makefilewith recipes for environment setup, activation, running, linting, formatting, and testing. Added pre-commit configuration using Ruff and standard hooks in.pre-commit-config.yaml, and updated dependencies inpyproject.tomlto includepre-commitandruff. [1] [2] [3]Documentation and Environment Configuration
README.mdto document Makefile usage, contribution guidelines, and project acknowledgments. Improved.env-exampleto clarify API key usage. [1] [2]Gemini Client Improvements
main.pyto improve Gemini API integration, including better argument parsing (with a--verboseflag), improved error handling, and more robust response formatting.